home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / By the Book / Mac C Primer V1 CW9 / 68K and PPC Projects (CW9) / 2.1 - Hello / Hello.c < prev   
C/C++ Source or Header  |  1996-05-28  |  466b  |  18 lines

  1. /********************************************************/
  2. /*                                                        */
  3. /*  Hello Code from Chapter Two of                         */
  4. /*                                                        */
  5. /*    ** The Macintosh C Programming Primer, 2nd Ed. **    */
  6. /*                                                      */
  7. /*    Copyright 1992, Dave Mark and Cartwright Reed       */
  8. /*                                                        */
  9. /********************************************************/
  10.  
  11. #include <stdio.h>
  12.  
  13. /*********************** main *************/
  14.  
  15. void    main( void )
  16. {
  17.     printf( "Hello, world!" );
  18. }